- /* sxmsign.cpp by K.Tsuru */
- // function ID = 505 BRADIX
- #ifndef SN_H
- #include "sn.h"
- #endif
- /*****************
- SDecimal class
- It changes the singn.
- a = -b
- ******************/
- SDecimal SDecimal::operator-() const{
- SDecimal result(*this);
- result.ChangeSign(505);
- return result;
- }